home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 426-450 / disk_443 / dice / dice.lzh / include / sys / resource.h < prev    next >
C/C++ Source or Header  |  1990-02-13  |  158b  |  18 lines

  1.  
  2. /*
  3.  *  SYS/RUSAGE.H
  4.  *
  5.  */
  6.  
  7. struct rtime {
  8.     long tv_sec;
  9.     long tv_usec;
  10. };
  11.  
  12. struct rusage {
  13.     struct rtime ru_utime;
  14.     struct rtime ru_stime;
  15. };
  16.  
  17.  
  18.